home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / CHKBOOK.PAK / CHECKVW.H < prev    next >
C/C++ Source or Header  |  1997-05-06  |  2KB  |  65 lines

  1. // checkvw.h : interface of the CCheckView class
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1995 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12.  
  13. // This class implements the check form, which looks something like
  14. // an actual check.  The format of the form is defined by a dialog
  15. // template that can be edited in App Studio.  The resource i.d. of this
  16. // form is IDD_CHECK, which is specified in the form view's constructor.
  17.  
  18. class CCheckView : public CFormView
  19. {
  20.     DECLARE_DYNCREATE(CCheckView)
  21. protected:
  22.     CCheckView();           // protected constructor used by dynamic creation
  23.  
  24. // Form Data
  25. protected:
  26.     //{{AFX_DATA(CCheckView)
  27.     enum { IDD = IDD_CHECK };
  28.     UINT    m_nCheckNo;
  29.     CString m_strDate;
  30.     CString m_strMemo;
  31.     CString m_strPayTo;
  32.     DWORD   m_dwCents;
  33.     //}}AFX_DATA
  34.  
  35. // Attributes
  36. protected:
  37.     CChkBookDoc* GetDocument()
  38.         {
  39.             ASSERT(m_pDocument->IsKindOf(RUNTIME_CLASS(CChkBookDoc)));
  40.             return (CChkBookDoc*) m_pDocument;
  41.         }
  42.  
  43. // Operations
  44. public:
  45.     // standard overrides of MFC classes
  46.     void OnUpdate(CView* pSender, LPARAM lHint, CObject* pHint);
  47.     void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  48.  
  49.     // called by the document
  50.     BOOL MaybeCommitDirtyCheck();
  51.  
  52. // Implementation
  53. protected:
  54.     virtual ~CCheckView();
  55.  
  56.     // Generated message map functions
  57.     //{{AFX_MSG(CCheckView)
  58.     afx_msg void OnEditCommitCheck();
  59.     afx_msg void OnAmountNumChange();
  60.     //}}AFX_MSG
  61.     DECLARE_MESSAGE_MAP()
  62. };
  63.  
  64. /////////////////////////////////////////////////////////////////////////////
  65.